home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / unix / include / sys / param.h < prev    next >
C/C++ Source or Header  |  1992-08-01  |  186b  |  13 lines

  1. #ifndef _PARAM_H
  2. #define _PARAM_H
  3.  
  4. #define MAXPATHLEN 1024
  5. #define FILENAME_MAX MAXPATHLEN /* Should be in stdio.h */
  6. #define DEV_BSIZE 512
  7.  
  8. #ifndef NULL
  9. #define NULL (0)
  10. #endif
  11.  
  12. #endif
  13.